Conditions | 1 |
Total Lines | 8 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import { BaseEndpoint } from './baseEndpoint'; |
||
26 | |||
27 | /** |
||
28 | * Get list of changes for people |
||
29 | * @returns { Promise<ChangesResponse> } |
||
30 | * @see https://developers.themoviedb.org/3/changes/get-person-change-list |
||
31 | */ |
||
32 | public async person(): Promise<ChangesResponse> { |
||
33 | return this.sendGetRequest('person/changes'); |
||
34 | } |
||
37 |